[DllImport("kernel32.dll", SetLastError=true)]
static extern bool QueryPerformanceFrequency(out ulong frequency);
None.
None.
If you are using this API, you are probably also looking for the QueryPerformanceCounter function.
ulong f;
private void bStart_Click(object sender, System.EventArgs e)
{ bool success = QueryPerformanceFrequency( out f);
System.Windows.Forms.MessageBox.Show("Freq. = "+f);
}
Do you know one? Please contribute it!